home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / tex / webtp55.arc / ARRAYLIK.CHI next >
Text File  |  1989-11-29  |  237b  |  14 lines

  1. @* array-like macros
  2. @d mem[#]==LongInt(memp(#)^) {simulate TeX mem array}
  3.  
  4. @p
  5. type
  6.   pLongInt = ^LongInt;
  7. var
  8.   memseg: word;
  9.  
  10. Function memp (index: Word): pLongInt;
  11. Begin
  12.   memp:= Ptr(memseg+index shr 2,index shl 2)
  13. End;
  14.